home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / SciAn / src / ScianVisArrows.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  353b  |  22 lines

  1. /*ScianVisArrows.h
  2.   Public stuff for ScianVisArrows.c
  3.   Eric Pepke
  4.   Oct 19, 1991
  5. */
  6.  
  7. extern ObjPtr arrowssClass;
  8.  
  9. /*Arrow style.  Keep in step with radio buttons*/
  10. #define AS_LINE        0
  11. #define AS_WIRE        1
  12. #define AS_FLAT        2
  13. #define AS_SOLID    3
  14.  
  15. #ifdef PROTO
  16. void InitArrows(void);
  17. void KillArrows(void);
  18. #else
  19. void InitArrows();
  20. void KillArrows();
  21. #endif
  22.